home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1998 September
/
Macworld (1998-09).dmg
/
Serious Demos
/
MacWebCam 2.7
/
Sample AppleScripts
/
Caption scripts
< prev
next >
Wrap
Text File
|
1997-01-12
|
639b
|
16 lines
-- Example AppleScript to show how to get/set various caption parameters
tell application "MacWebCam"
get message of caption 1 of active document
get position of caption 1 of active document
get style of caption 1 of active document
get font of caption 1 of active document
get color of caption 1 of active document
get size of caption 1 of active document
get horizontal justification of caption 1 of active document
get vertical justification of caption 1 of active document
--set message of caption 1 of active document to "new caption"
--set horizontal justification of caption 1 of active document to left
-- etc
end tell